Skip to content

Commit e7a1025

Browse files
committed
working basics
1 parent f7ef992 commit e7a1025

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ RUN apt-get update \
2626
# Clean up
2727
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts/
2828

29+
# Setup the app here
30+
2931
# Setting the ENTRYPOINT to docker-init.sh will configure non-root access
3032
# to the Docker socket. The script will also execute CMD as needed.
3133
ENTRYPOINT [ "/usr/local/share/docker-init.sh" ]

.devcontainer/devcontainer.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
"name": "UIPA DevBox",
33
"dockerComposeFile": "docker-compose.yml",
44
"service": "app",
5-
// "workspaceFolder": "/workspaces/uipa",
6-
// "forwardPorts": [8000, 5432, 9200],
7-
// "postCreateCommand": "until docker info > /dev/null 2>&1; do echo 'Waiting for Docker to start...'; sleep 1; done && docker-compose up -d && python -m venv venv && source venv/bin/activate && pip install -r requirements.txt && bash data/seed/init_db.sh && python manage.py check && sleep infinity",
8-
// "remoteUser": "root",
5+
"forwardPorts": [8000, 5432, 9200],
96
"customizations": {
107
"vscode": {
118
"extensions": [

0 commit comments

Comments
 (0)