akkoma/docker-compose.yaml
Your Name 8eed63f335 fix
2022-11-27 15:21:58 -07:00

36 lines
599 B
YAML

version: '3'
services:
postgresql:
build: ./postgresql
restart: "always"
volumes:
- postgresql:/var/lib/postgresql
- ./saves:/saves
networks:
- akkoma
environment:
ENDPOINT: "localhost"
privileged: true
akkoma:
build: ./akkoma
restart: "always"
volumes:
- ./config:/etc/akkoma
- ./uploads:/var/lib/akkoma/uploads
ports:
- "443:443"
networks:
- akkoma
environment:
ENDPOINT: "localhost"
privileged: true
networks:
akkoma:
volumes:
postgresql:
external: false