1
0
Fork 0
pixelfed/docker-compose.yml

83 lines
1.7 KiB
YAML
Raw Normal View History

2018-05-20 13:02:29 +00:00
---
version: '3'
# In order to set configuration, please use a .env file in
# your compose project directory (the same directory as your
# docker-compose.yml), and set database options, application
# name, key, and other settings there.
# A list of available settings is available in .env.example
#
# The services should scale properly across a swarm cluster
# if the volumes are properly shared between cluster members.
2018-05-20 13:02:29 +00:00
services:
2020-04-11 15:48:02 +00:00
## App and Worker
app:
2019-04-22 02:40:32 +00:00
# Comment to use dockerhub image
2022-12-24 15:32:28 +00:00
image: pixelfed/pixelfed:latest
2019-06-03 02:53:13 +00:00
restart: unless-stopped
env_file:
- .env.docker
2018-05-20 13:02:29 +00:00
volumes:
- app-storage:/var/www/storage
- app-bootstrap:/var/www/bootstrap
2021-09-21 15:08:19 +00:00
- "./.env.docker:/var/www/.env"
networks:
- external
- internal
2020-04-11 15:48:02 +00:00
ports:
- "8080:80"
2020-04-11 15:48:02 +00:00
depends_on:
2020-04-11 15:52:05 +00:00
- db
2020-04-11 15:48:02 +00:00
- redis
2020-04-11 15:48:02 +00:00
worker:
2022-12-24 15:32:28 +00:00
image: pixelfed/pixelfed:latest
2019-06-03 02:53:13 +00:00
restart: unless-stopped
2019-04-22 02:40:32 +00:00
env_file:
- .env.docker
2019-04-22 02:40:32 +00:00
volumes:
- app-storage:/var/www/storage
- app-bootstrap:/var/www/bootstrap
2019-04-22 02:40:32 +00:00
networks:
2020-04-11 15:48:02 +00:00
- external
2019-04-22 02:40:32 +00:00
- internal
command: gosu www-data php artisan horizon
2020-04-11 15:48:02 +00:00
depends_on:
2020-04-11 15:52:05 +00:00
- db
2020-04-11 15:48:02 +00:00
- redis
## DB and Cache
db:
image: mariadb:jammy
2019-06-03 02:53:13 +00:00
restart: unless-stopped
networks:
- internal
command: --default-authentication-plugin=mysql_native_password
env_file:
- .env.docker
2018-05-20 13:02:29 +00:00
volumes:
- "db-data:/var/lib/mysql"
2018-05-20 13:02:29 +00:00
redis:
2019-04-18 14:23:47 +00:00
image: redis:5-alpine
2019-06-03 02:53:13 +00:00
restart: unless-stopped
env_file:
- .env.docker
2018-05-20 13:02:29 +00:00
volumes:
- "redis-data:/data"
networks:
- internal
volumes:
2020-04-11 15:50:08 +00:00
db-data:
redis-data:
app-storage:
2020-04-11 15:48:02 +00:00
app-bootstrap:
networks:
internal:
internal: true
external:
2020-04-11 15:50:08 +00:00
driver: bridge