Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
default config updated, additional services added
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilFreelancer committed Feb 8, 2020
1 parent 285d18b commit a0d50ad
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions docker-compose.yml.dist
Expand Up @@ -3,20 +3,45 @@ version: "3.5"
services:

core:
image: evilfreelancer/dockavel:latest-xdebug
image: laravelvpnadmin/api-core
restart: unless-stopped
ports:
- 80:80
- 80:80
volumes:
- ../api-core:/app
- ./logs/api-core:/var/log/apache2
- ./sites/api-core/storage:/app/storage
- ./sites/api-core/bootstrap/cache:/app/bootstrap/cache
# - ../api-core:/app

queue:
image: laravelvpnadmin/api-core
restart: unless-stopped
environment:
- CONTAINER_ROLE=queue
volumes:
- ./logs/api-core:/var/log/apache2
- ./sites/api-core/storage:/app/storage
- ./sites/api-core/bootstrap/cache:/app/bootstrap/cache
# - ../api-core:/app

scheduler:
image: laravelvpnadmin/api-core
restart: unless-stopped
environment:
- CONTAINER_ROLE=scheduler
volumes:
- ./logs/api-core:/var/log/apache2
- ./sites/api-core/storage:/app/storage
- ./sites/api-core/bootstrap/cache:/app/bootstrap/cache
# - ../api-core:/app

# openvpn:
# image: laravel-vpn-admin/docker-openvpn:latest

# l2tp:
# image: laravel-vpn-admin/docker-l2tp:latest

mardiadb:
mariadb:
restart: unless-stopped
image: mariadb:10
ports:
Expand Down

0 comments on commit a0d50ad

Please sign in to comment.