1
0
Fork 0
pixelfed/docker-compose.yml

91 lines
1.9 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
build:
context: .
dockerfile: contrib/docker/Dockerfile.apache
image: pixelfed
2019-06-03 02:53:13 +00:00
restart: unless-stopped
env_file:
2020-04-11 15:48:02 +00:00
- ./.env.docker
2018-05-20 13:02:29 +00:00
volumes:
2019-04-16 06:18:40 +00:00
- "app-storage:/var/www/storage"
- "app-bootstrap:/var/www/bootstrap"
2020-04-11 15:48:02 +00:00
- "./.env.docker:/var/www/.env"
networks:
- external
- internal
2020-04-11 15:48:02 +00:00
ports:
- "8080:80"
depends_on:
- postgres
- redis
2020-04-11 15:48:02 +00:00
worker:
build:
context: .
dockerfile: contrib/docker/Dockerfile.apache
2019-04-22 02:40:32 +00:00
image: pixelfed
2019-06-03 02:53:13 +00:00
restart: unless-stopped
2019-04-22 02:40:32 +00:00
env_file:
2020-04-11 15:48:02 +00:00
- ./.env.docker
2019-04-22 02:40:32 +00:00
volumes:
- "app-storage:/var/www/storage"
- "app-bootstrap:/var/www/bootstrap"
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:
- postgres
- redis
## DB and Cache
db:
2019-04-26 06:31:06 +00:00
image: mysql:8.0
2019-06-03 02:53:13 +00:00
restart: unless-stopped
networks:
- internal
command: --default-authentication-plugin=mysql_native_password
2018-05-20 13:02:29 +00:00
environment:
- MYSQL_DATABASE=pixelfed
- MYSQL_USER=${DB_USERNAME}
- MYSQL_PASSWORD=${DB_PASSWORD}
- MYSQL_RANDOM_ROOT_PASSWORD=true
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
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