-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
35 lines (35 loc) · 914 Bytes
/
compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: '3'
services:
app:
container_name: limarka-render-app
image: reinanhs/php81-composer-npm
tty: true
command: "/bin/bash"
working_dir: /var/www/html
environment:
APP_BASE_URL: '/'
APP_LANGUAGE: 'pt_BR'
GITHUB_REPOSITORY_OWNER: 'reinanhs'
GITHUB_REPOSITORY: 'limarka-render-html'
volumes:
- '.:/var/www/html'
app-test:
container_name: limarka-render-test
image: reinanhs/limarka-render-html:latest
tty: true
command: "/bin/bash"
environment:
APP_BASE_URL: '/'
APP_LANGUAGE: 'pt_BR'
GITHUB_REPOSITORY_OWNER: 'reinanhs'
GITHUB_REPOSITORY: 'limarka-render-html'
volumes:
- './build_test:/var/www/html/build_local'
nginx:
image: nginx:alpine
container_name: nginx-server
ports:
- "8000:80"
volumes:
- ./build_local:/var/www
- ./nginx/conf.d/:/etc/nginx/conf.d/