Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
scc-net
netvs
netvs-core
Commits
491d55cf
Commit
491d55cf
authored
Dec 05, 2021
by
janis.streib
🦉
Browse files
ADD: containerized dev environment
parent
17a096f3
Pipeline
#180600
passed with stages
in 8 minutes and 15 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
frontend/Dockerfile
0 → 100644
View file @
491d55cf
FROM
node:14-bullseye
EXPOSE
8080
WORKDIR
.
COPY
package.json .
COPY
package-lock.json .
RUN
npm
install
ENTRYPOINT
["npm","run","serve"]
frontend/docker-compose.yml
0 → 100644
View file @
491d55cf
version
:
'
3.7'
services
:
netvs-core_devel
:
image
:
netvs-core
ports
:
-
"
8080:8080"
build
:
.
volumes
:
-
type
:
bind
source
:
'
./netvs.config.js'
target
:
'
/netvs.config.js'
-
type
:
bind
source
:
'
./vue.config.js'
target
:
'
/vue.config.js'
-
'
./src:/src'
-
'
./public:/public'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment