akkoma/docker-compose.yaml

36 lines
599 B
YAML
Raw Normal View History

2022-11-27 15:12:31 -07:00
version: '3'
services:
postgresql:
build: ./postgresql
restart: "always"
volumes:
- postgresql:/var/lib/postgresql
- ./saves:/saves
networks:
2022-11-27 15:21:58 -07:00
- akkoma
2022-11-27 15:12:31 -07:00
environment:
ENDPOINT: "localhost"
privileged: true
akkoma:
build: ./akkoma
restart: "always"
volumes:
- ./config:/etc/akkoma
- ./uploads:/var/lib/akkoma/uploads
ports:
- "443:443"
networks:
2022-11-27 15:21:58 -07:00
- akkoma
2022-11-27 15:12:31 -07:00
environment:
ENDPOINT: "localhost"
privileged: true
networks:
2022-11-27 15:21:58 -07:00
akkoma:
2022-11-27 15:12:31 -07:00
volumes:
postgresql:
external: false