Rename source folders
All checks were successful
forgejo/Procyon/seedling/pipeline/pr-master This commit looks good
forgejo/Procyon/seedling/pipeline/head This commit looks good

This commit is contained in:
Roman Jaroš 2024-01-10 21:08:53 +00:00 committed by Roman Jaroš
parent 29ddf807f0
commit a260d611bd
31 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1 @@
FROM local/nodejs/dev:18

View file

@ -0,0 +1,7 @@
{
"name": "$(appName)",
"workspaceFolder": "/home/project/$(appName)",
"dockerComposeFile": "docker-compose.yml",
"service": "$(appName)",
"postCreateCommand": "sudo chown iamuser:iamuser -R /home/project",
}

View file

@ -0,0 +1,42 @@
version: "3"
volumes:
node_modules:
pnpm-store:
networks:
net:
name: $(appName)_net
driver: bridge
ipam:
config:
- subnet: 10.2.0.0/24
gateway: 10.2.0.1
services:
seedling:
build:
context: .
container_name: $(appName)
volumes:
- ../:/home/project/$(appName)
- node_modules:/home/project/seedling/node_modules
- pnpm-store:/home/project/seedling/.pnpm-store
command: sleep infinity
networks:
net:
ipv4_address: 10.2.0.2
selenium:
image: seleniarm/standalone-chromium:114.0
container_name: $(appName)-selenium
shm_size: 2gb
environment:
- SE_VNC_NO_PASSWORD=1
ports:
- 7900:7900
- 5900:5900
- 4444:4444
networks:
net:
ipv4_address: 10.2.0.4