CHORE: Created .env file to store environment vars

This commit is contained in:
2024-02-18 19:22:35 +00:00
parent 01cf5d641b
commit dba4cf01a3
8 changed files with 48 additions and 33 deletions

View File

@ -0,0 +1,15 @@
version: '3.8'
services:
gitlab-runner-python:
image: gitlab/gitlab-runner:latest
volumes:
- ./runner-data-python:/etc/gitlab-runner
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
gitlab-runner-docker:
image: gitlab/gitlab-runner:latest
volumes:
- ./runner-data-docker:/etc/gitlab-runner
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped