all repos — artbound-python @ main

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

docker-compose.yaml (view raw)

 1services:
 2  app:
 3    build: .
 4    image: ghcr.io/birabittoh/artbound-python:main
 5    container_name: artbound-python
 6    ports:
 7      - 127.0.0.1:1111:80
 8    volumes:
 9      - /etc/localtime:/etc/localtime:ro
10      - cache:/app/artbound_python/static/res/cache/
11      - ${PWD}/.env:/app/.env
12      - ${PWD}/credentials.json:/app/credentials.json
13      - ${PWD}/token.json:/app/token.json
14volumes:
15  cache: