akkoma/docker-compose.yaml

28 lines
469 B
YAML
Raw Normal View History

2022-11-27 15:12:31 -07:00
version: '3'
services:
akkoma:
2023-03-27 09:38:43 -06:00
build: .
2022-11-27 15:12:31 -07:00
restart: "always"
volumes:
2023-03-27 09:38:43 -06:00
- postgresql:/var/lib/postgresql
2022-11-27 15:12:31 -07:00
- ./config:/etc/akkoma
- ./uploads:/var/lib/akkoma/uploads
2022-11-27 16:02:25 -07:00
- ./emoji:/var/lib/akkoma/static/emoji
2023-03-27 09:38:43 -06:00
- ./saves:/saves
2022-11-27 15:12:31 -07:00
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
2023-03-27 09:38:43 -06:00