all repos — artbound-python @ 4ab8582c6bb9b125427e4b5bc809a23519976fa6

A client-server reimplementation of the administration panel for ArtBound.

docker-compose.yaml (view raw)

 1services:
 2  artbound_python:
 3    build: .
 4    image: artbound_python:latest
 5    container_name: artbound-python
 6    ports:
 7      - 127.0.0.1:1111:1111
 8#    environment:
 9#      - SPREADSHEET_ID=
10#      - RANGE=
11    volumes:
12      - cache:/app/artbound_python/static/res/cache/
13      - ${PWD}/.env:/app/.env
14      - ${PWD}/credentials.json:/app/credentials.json
15      - ${PWD}/token.json:/app/token.json
16volumes:
17  cache: