Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Commits
a5205464
Commit
a5205464
authored
4 years ago
by
Andrew Kapuscinski
Browse files
Options
Downloads
Patches
Plain Diff
created minimal condaless dockerfile and added a docker-compose file for local development
parent
252e3fa2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Condaless.dockerfile.v2
+14
-0
14 additions, 0 deletions
Condaless.dockerfile.v2
docker-compose.local.yml
+48
-0
48 additions, 0 deletions
docker-compose.local.yml
with
62 additions
and
0 deletions
Condaless.dockerfile.v2
0 → 100644
+
14
−
0
View file @
a5205464
FROM python:3.8-slim
# Environment variables
ENV PIP_NO_CACHE_DIR false
ENV CAPO_PROFILE docker
# Set up Capo
WORKDIR /root/.capo
COPY docker.properties docker.properties
# Get postgres/mysql development stuff in the image
RUN apt-get update \
&& apt-get install -y libmariadb-dev-compat gcc libpq-dev \
&& rm -rf /var/lib/apt/lists
This diff is collapsed.
Click to expand it.
docker-compose.local.yml
0 → 100644
+
48
−
0
View file @
a5205464
version
:
'
3.8'
services
:
db
:
image
:
postgres:12.4
restart
:
always
environment
:
POSTGRES_USER
:
archive
POSTGRES_PASSWORD
:
docker
command
:
postgres -c listen_addresses=*
amqp
:
image
:
rabbitmq:3.8
restart
:
always
schema
:
build
:
context
:
./schema/
dockerfile
:
Dockerfile.local
depends_on
:
-
db
volumes
:
-
./schema:/code/schema
workflow
:
build
:
context
:
./services/workflow/
dockerfile
:
Dockerfile.local
ports
:
-
"
3456:3456"
depends_on
:
-
schema
volumes
:
-
./services/workflow:/wksp
-
./shared:/wksp/shared
-
./apps:/wksp/apps
capability
:
build
:
context
:
./services/capability/
dockerfile
:
Dockerfile.local
ports
:
-
"
3457:3457"
depends_on
:
-
schema
volumes
:
-
./services/capability:/wksp
-
./shared:/wksp/shared
-
./apps:/wksp/apps
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment